home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef maintestH
- #define maintestH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "srvr_tlb.h"
- //---------------------------------------------------------------------------
- class TForm2 : public TForm
- {
- __published: // IDE-managed Components
- TButton *Button1;
- void __fastcall Button1Click(TObject *Sender);
- private: // User declarations
- TCOMIMyAuto MyAutoServer;
- public: // User declarations
- __fastcall TForm2(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm2 *Form2;
- //---------------------------------------------------------------------------
- #endif
-